home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00192_Hide if not on level 1.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  331 b   |  23 lines

  1. property pSpr
  2.  
  3. on beginSprite me
  4.   global gGameLevel
  5.   pSpr = sprite(me.spriteNum)
  6.   if (gGameLevel > 0) and not inShotMode() then
  7.     pSpr.visible = 0
  8.   end if
  9. end
  10.  
  11. on endSprite me
  12.   pSpr.visible = 1
  13. end
  14.  
  15. on mouseUp
  16.   if inRecipeMode() or inShotMode() then
  17.     go("Main Menu")
  18.   else
  19.     go("New Game")
  20.   end if
  21.   stopEvent()
  22. end
  23.